home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Cafe 3
/
Visual Cafe 3.ISO
/
Vcafe
/
Main.bin
/
TextAlignmentPropertyEditor.java
< prev
next >
Wrap
Text File
|
1998-10-27
|
713b
|
27 lines
package com.symantec.itools.swing;
import com.symantec.itools.beans.*;
public final class TextAlignmentPropertyEditor
extends TaggedIntPropertyEditor
{
private static TaggedInt[] m_Tags = null;
// When the class loads, load the tags
static
{
m_Tags = new TaggedInt[]
{
new TaggedInt("LEFT", com.sun.java.swing.SwingConstants.LEFT, "com.sun.java.swing.SwingConstants.LEFT"),
new TaggedInt("CENTER", com.sun.java.swing.SwingConstants.CENTER, "com.sun.java.swing.SwingConstants.CENTER"),
new TaggedInt("RIGHT", com.sun.java.swing.SwingConstants.RIGHT, "com.sun.java.swing.SwingConstants.RIGHT"),
};
}
public TextAlignmentPropertyEditor()
{
super(m_Tags);
}
}